home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 62
/
Volume 62 - JOGO DISK .iso
/
Games
/
my_lovely_home.swf
/
scripts
/
frame_1
/
DoAction.as
Wrap
Text File
|
2008-03-17
|
863b
|
38 lines
function init()
{
var _loc2_ = 1;
while(_loc2_ <= 7)
{
this["thing_mc" + _loc2_].gotoAndStop(1);
this["btn_mc" + _loc2_]._mc.gotoAndStop(1);
this["btn_mc" + _loc2_].v = _loc2_;
this["btn_mc" + _loc2_].onRelease = function()
{
if(this._mc._currentframe == this._mc._totalframes)
{
this._mc.gotoAndStop(1);
}
else
{
this._mc.nextFrame();
}
this._parent["thing_mc" + this.v].gotoAndStop(this._mc._currentframe);
};
_loc2_ = _loc2_ + 1;
}
}
function SetPrintJob()
{
my_pj = new PrintJob();
my_pj.start();
my_pj.addPage("_root",{printAsBitmap:true});
my_pj.send();
delete my_pj;
}
stop();
init();
help_btn.onRelease = function()
{
help_mc._visible = !help_mc._visible;
};